home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / Includes / CIColorManagement.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-18  |  844 b   |  30 lines  |  [TEXT/CWIE]

  1. /**[f******************************************************************
  2.  *    CIClrMgt.h -- CIColorManagement Interface definition
  3.  *
  4.  *    Copyright (c) 1996 Adobe Systems, Inc. All Rights Reserved
  5.  *
  6.  *    
  7.  * ABSTRACT:  
  8.  *
  9.  * USAGE: 
  10.  *
  11.  * $Revision:   1.0  $
  12.  *
  13.  *
  14.  **f]******************************************************************/ 
  15.  
  16. #ifndef __CICLRMGT_H
  17. #define __CICLRMGT_H
  18. #include "pmtypes.h"
  19.  
  20. class CIColorManagement : public CIInterface {
  21. public:
  22.     // get all profiles associated with current pub
  23.     // Note: Caller is responsible for freeing the handle if this method is successful,
  24.     // via FreeHandle method
  25.     virtual PMXErr    GetAllSourceProfiles ( PMHandle *phProfileNames, unsigned short *pNameCnt, unsigned short *pSizeEach) = 0;
  26.     virtual void    FreeHandle ( PMHandle aHandle) = 0;
  27. };
  28.  
  29. #endif // __CICLRMGT_H
  30.